home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 121
/
FreelogMagazineJuilletAout2014-No121.iso
/
Outils
/
Adobe-Air
/
adobe-air_13.exe
/
[0]
/
setup.swf
/
scripts
/
_DragManagerStyle.as
< prev
next >
Wrap
Text File
|
2014-03-27
|
2KB
|
48 lines
package
{
import mx.core.IFlexModuleFactory;
import mx.skins.halo.DefaultDragImage;
import mx.styles.CSSStyleDeclaration;
import mx.styles.StyleManager;
public class _DragManagerStyle
{
private static var _embed_css_Assets_swf_mx_skins_cursor_DragLink_634843592:Class = _DragManagerStyle__embed_css_Assets_swf_mx_skins_cursor_DragLink_634843592;
private static var _embed_css_Assets_swf_mx_skins_cursor_DragCopy_635105865:Class = _DragManagerStyle__embed_css_Assets_swf_mx_skins_cursor_DragCopy_635105865;
private static var _embed_css_Assets_swf_mx_skins_cursor_DragReject_1040175597:Class = _DragManagerStyle__embed_css_Assets_swf_mx_skins_cursor_DragReject_1040175597;
private static var _embed_css_Assets_swf_mx_skins_cursor_DragMove_634805741:Class = _DragManagerStyle__embed_css_Assets_swf_mx_skins_cursor_DragMove_634805741;
public function _DragManagerStyle()
{
super();
}
public static function init(param1:IFlexModuleFactory) : void
{
var fbs:IFlexModuleFactory = param1;
var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration("DragManager");
if(!style)
{
style = new CSSStyleDeclaration();
StyleManager.setStyleDeclaration("DragManager",style,false);
}
if(style.defaultFactory == null)
{
style.defaultFactory = function():void
{
this.rejectCursor = _embed_css_Assets_swf_mx_skins_cursor_DragReject_1040175597;
this.defaultDragImageSkin = DefaultDragImage;
this.moveCursor = _embed_css_Assets_swf_mx_skins_cursor_DragMove_634805741;
this.copyCursor = _embed_css_Assets_swf_mx_skins_cursor_DragCopy_635105865;
this.linkCursor = _embed_css_Assets_swf_mx_skins_cursor_DragLink_634843592;
};
}
}
}
}